home *** CD-ROM | disk | FTP | other *** search
- // Copyright (C) 1997-2002 Alias|Wavefront,
- // a division of Silicon Graphics Limited.
- //
- // The information in this file is provided for the exclusive use of the
- // licensees of Alias|Wavefront. Such users have the right to use, modify,
- // and incorporate this code into other products for purposes authorized
- // by the Alias|Wavefront license agreement, without fee.
- //
- // ALIAS|WAVEFRONT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
- // INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
- // EVENT SHALL ALIAS|WAVEFRONT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
- // CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
- // DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- // TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- // PERFORMANCE OF THIS SOFTWARE.
- //
- //
- // Alias|Wavefront Script File
- // MODIFY THIS AT YOUR OWN RISK
- //
- // Creation Date: 7 May 1997
- // Author: rh
- //
- // Description:
- // Image format data. Ascii file which the user can modify
- // in order to add new image formats.
- //
- // Contents
- // gImageFormatData[] List of image formats.
- //
-
-
-
- global string $gImageFormatData[] =
- {
- // name width height aspect ratio
- // -----------------------------------------------
- "320x240 320 240 1.333",
- "640x480 640 480 1.333",
- "1k_Square 1024 1024 1.000",
- "2k_Square 2048 2048 1.000",
- "3k_Square 3072 3072 1.000",
- "4k_Square 4096 4096 1.000",
- "CCIR_PAL/Quantel_PAL 720 576 1.333",
- "CCIR_601/Quantel_NTSC 720 486 1.333",
- "Full_1024 1024 768 1.333",
- "Full_1280/Screen 1280 1024 1.333",
- "HD_720 1280 720 1.777",
- "HD_1080 1920 1080 1.777",
- "NTSC_4d 646 485 1.333",
- "PAL_768 768 576 1.333",
- "PAL_780 780 576 1.333",
- "Targa_486_(tga) 512 486 1.333",
- "Targa_NTSC_(tga) 512 482 1.333",
- "Targa_PAL_(tga) 512 576 1.333"
- };
-
- // PLE caps render resolution by kPLEMaxX & kPLEMaxY
- global string $gPLEImageFormatData[] =
- {
- // name width height aspect ratio
- // -----------------------------------------------
- "320x240 320 240 1.333",
- "640x480 640 480 1.333",
- "CCIR_PAL/Quantel_PAL 720 576 1.333",
- "CCIR_601/Quantel_NTSC 720 486 1.333",
- "Full_1024 1024 768 1.333",
- "NTSC_4d 646 485 1.333",
- "PAL_768 768 576 1.333",
- "PAL_780 780 576 1.333",
- "Targa_486_(tga) 512 486 1.333",
- "Targa_NTSC_(tga) 512 482 1.333",
- "Targa_PAL_(tga) 512 576 1.333"
- };
-
-